home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Attributes / HasFace.cp < prev    next >
Encoding:
Text File  |  1997-06-28  |  186 b   |  15 lines  |  [TEXT/CWIE]

  1. // HasFace.cp
  2.  
  3. #ifndef HasFace_h
  4. #include "HasFace.h"
  5. #endif
  6.  
  7. void HasFace::SetFace( const ::Face& newFace )
  8.   {
  9.     if ( face == newFace )
  10.         return;
  11.     
  12.     face = newFace;
  13.     FaceChanged();
  14.   }
  15.